Occurs after the EntityManager has completed processing of a query.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Sub OnQueried( _
ByVal source As T, _
ByVal args As IdeaBlade.EntityModel.EntityQueriedEventArgs _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As EntityManagerDelegate(Of T)
Dim source As T
Dim args As IdeaBlade.EntityModel.EntityQueriedEventArgs
instance.OnQueried(source, args) |
C# | |
---|
public virtual void OnQueried(
T source,
IdeaBlade.EntityModel.EntityQueriedEventArgs args
) |
C++/CLI | |
---|
public:
virtual void OnQueried(
T^ source,
IdeaBlade.EntityModel.EntityQueriedEventArgs^ args
) |
Parameters
- source
- The source of the event.
- args
- The original event arguments.
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also